home *** CD-ROM | disk | FTP | other *** search
- unit PubMain;
-
- interface
-
- uses
- ComObj, ActiveX, Publisher_TLB, StdVcl;
-
- type
- TEventObj = class(TAutoObject, IEventObj)
- protected
- function MyEvent(const EventParam: WideString): HResult; safecall;
- end;
-
- implementation
-
- uses ComServ;
-
- function TEventObj.MyEvent(const EventParam: WideString): HResult;
- begin
-
- end;
-
- initialization
- TAutoObjectFactory.Create(ComServer, TEventObj, Class_EventObj,
- ciMultiInstance, tmApartment);
- end.
-